@font-face {
	font-family: 'Sansation Regular';
	src: url(../fonts/Sansation_Regular_0.ttf)
}

* {
  font-family: 'Sansation Regular';
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

* body {
  background: none;
  overflow: hidden !important;
}

* body #root {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100vw;
  height: 100vh;
}

* body #root .success {
  color: lightgreen;
  border-right: 2px solid lightgreen;
}

* body #root .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

* body #root .container .notification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  min-width: 350px;
  width: auto;
  height: 60px;
  margin: 5px;
  color: white;
  z-index: 1000;
  border-bottom: 5px solid rgb(84, 168, 245);
  background: rgb(80, 89, 104);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

* body #root .container .notification .message {
  padding: 0px;
  margin-right: 25px;
  letter-spacing: 0.3;
  font-size: 15px
}

* body #root .container .notification .loading {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-animation: loading ease-in-out;
          animation: loading ease-in-out;
}

* body #root .container .notification .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 100%;
  font-size: 25px;
  margin-left: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center
}

.close-anim {
  -webkit-animation: anim-out 1.2s ease-in-out;
          animation: anim-out 1.2s ease-in-out;
}

@-webkit-keyframes loading {
  0% {
    opacity: 0.25;
  }
  100% {
    width: 0%;
  }
}

@keyframes loading {
  0% {
    opacity: 0.25;
  }
  100% {
    width: 0%;
  }
}

@-webkit-keyframes anim-out {
  95% {
    -webkit-transform: translate(-40%);
            transform: translate(-40%);
  }
  97% {
    -webkit-transform: translate(-45%);
            transform: translate(-45%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}

@keyframes anim-out {
  95% {
    -webkit-transform: translate(-40%);
            transform: translate(-40%);
  }
  97% {
    -webkit-transform: translate(-45%);
            transform: translate(-45%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}

.open {
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-animation: anim-in 10s ease-in-out;
          animation: anim-in 10s ease-in-out;
}

@-webkit-keyframes anim-in {
  5% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes anim-in {
  5% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/*# sourceMappingURL=styles.css.map */